home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Environments / PowerFantasm™ 4.19a / PowerFantasm™ / Fantasm V4 headers / General_usage.def < prev    next >
Text File  |  1996-06-21  |  2KB  |  128 lines

  1. *(C) Lightsoft 1995/1996.
  2. ******General useage imports def.
  3. **This file should be the last .def to be included, so that the IFND directives
  4. **can take effect.
  5. **7th Dec. 1995.
  6.     if PPC
  7. **INIT
  8.         ifnd    InitGraf
  9.             import    InitGraf
  10.         endc
  11.     
  12.         ifnd    InitFonts
  13.             import    InitFonts
  14.         endc
  15.  
  16.         ifnd    InitWindows    
  17.             import    InitWindows
  18.         endc
  19.     
  20.         ifnd    InitMenus
  21.             import    InitMenus
  22.         endc
  23.  
  24.         ifnd    TEInit
  25.             import    TEInit
  26.         endc
  27.  
  28.         ifnd    InitDialogs
  29.             import    InitDialogs
  30.         endif
  31.  
  32.         ifnd    InitCursor
  33.             import    InitCursor
  34.         endif
  35.     
  36. **Dialogs
  37.         ifnd    Alert
  38.             IMPORT    Alert
  39.         endif
  40.     
  41.         ifnd    newDialog
  42.             IMPORT    NewDialog
  43.         endif
  44.     
  45.         ifnd    GetnewDialog
  46.             IMPORT    GetNewDialog
  47.         endif
  48.     
  49.         ifnd
  50.             IMPORT    CloseDialog
  51.         endif
  52.  
  53.         ifnd    DisposeDialog
  54.             IMPORT    DisposeDialog
  55.         endif
  56.         ifnd    ParamText
  57.             IMPORT    ParamText
  58.         endif
  59.     
  60.         ifnd    ModalDialog
  61.             IMPORT    ModalDialog
  62.         endif
  63.     
  64.         ifnd    DialogSelect
  65.             IMPORT    DialogSelect
  66.         endif
  67.     
  68.         ifnd    DrawDialog
  69.             IMPORT    DrawDialog
  70.         endif
  71.     
  72.         ifnd    UpdateDialog
  73.             IMPORT    UpdateDialog
  74.         endif
  75.  
  76. **Time
  77.         ifnd    ReadDateTime
  78.             IMPORT    ReadDateTime
  79.         endif
  80.     
  81.         ifnd    GetDateTime
  82.             IMPORT    GetDateTime
  83.         endif
  84.     
  85.         ifnd    GetTime
  86.             IMPORT    GetTime
  87.         endif
  88.     
  89.         ifnd    SecondsToDate
  90.             IMPORT    SecondsToDate
  91.         endif
  92.     
  93.         ifnd    SysBeep
  94.             IMPORT    SysBeep
  95.         endif
  96.     
  97. **Debugger
  98.         ifnd    Debugger
  99.             IMPORT    Debugger
  100.         endif
  101.     
  102.         ifnd    DebugStr
  103.             IMPORT    DebugStr
  104.         endif
  105.  
  106. **Windows
  107.         ifnd    GetNewWindow
  108.             IMPORT    GetNewWindow
  109.         endif
  110.  
  111.         ifnd    GetNewCWindow
  112.             IMPORT    GetNewCWindow
  113.         endif
  114.  
  115.         ifnd    ShowWindow
  116.             IMPORT    ShowWindow
  117.         endif
  118.  
  119.         ifnd    CloseWindow
  120.             IMPORT    CloseWindow
  121.         endif
  122.  
  123.         ifnd    DisposeWindow
  124.             IMPORT    DisposeWindow
  125.         endif
  126.  
  127.     endif
  128.